home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_13_01
/
allison
/
atox3.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-11-02
|
171 b
|
12 lines
LISTING 3 - Converts a hex-string to a number via sscanf
#include <stdio.h>
long atox(char *s)
{
long n = 0L;
sscanf(s,"%x",&n);
return n;
}